@charset "utf-8";
/* CSS Document */
.main  {max-width: 1200px; background-color: white; padding: 20px;margin: 0 auto;}
.banner img {width: 100%; height: auto; margin: 0px auto;}
    body {
        font-family: 'Arial', sans-serif;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }

    h1 {
        color: #333;
        margin-bottom: 20px;
    }

    .show-item, .tour-item {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 40px;
        padding: 20px;
        background: #f5f5f5;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .show-image img {
        max-width: 60%;
        border-radius: 8px;
        margin-right: 20px;
    }

    .show-details {
        flex: 1;
        text-align: left;
    }

    .show-details h2 {
        color: #2b2b2b;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .show-details p {
        color: #555;
        margin-bottom: 20px;
    }

    .buy-ticket-btn {
        display: inline-block;
        padding: 12px 24px;
        background-color: #007bff;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        font-size: 16px;
    }

    .buy-ticket-btn:hover {
        background-color: #0056b3;
    }

    .tour-item h2, .tour-item p {
        margin: 10px 0;
        color: #2b2b2b;
    }

    @media (max-width: 768px) {
        .show-item, .tour-item {
            flex-direction: column;
            text-align: center;
        }

        .show-image img {
            margin: 0 0 20px 0;
        }
    }
